home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Workbench Design
/
WB Collection.iso
/
workbench werkzeuge
/
icon tools
/
opticon-1.8
/
memfn.h
< prev
next >
Wrap
C/C++ Source or Header
|
1996-04-07
|
570b
|
23 lines
/* $Id: memfn.h,v 1.1 1994/02/03 04:11:02 tf Exp $ */
#ifndef MEMFN_H
#define MEMFN_H
#ifndef __P
#if defined (__STDC__) || defined(__cplusplus)
#define __P(protos) protos
#else /* !(__STDC__ || __cplusplus) */
#define __P(protos) ()
#endif /* __STDC__ || __cplusplus */
#endif /* !__P */
extern char *memand __P( ( char *to, char *from, unsigned n ) );
extern char *memor __P( ( char *to, char *from, unsigned n ) );
extern char *memandnot __P( ( char *to, char *from, unsigned n ) );
extern char *memnot __P( ( char *to, unsigned n ) );
#endif /* !MEMFN_H */